* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: transparent;
  position: relative;
  z-index: 100;
}

.logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}


.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #a855f7;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #a855f7;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.contact-btn {
  padding: 10px 20px;
  background: linear-gradient(to right, #a855f7, #ec4899);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInHero 2s ease-in-out;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content .x-bold {
  font-weight: 900;
  color: #fff;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
  font-weight: 400;
}

.explore-btn {
  padding: 12px 30px;
  background: linear-gradient(to right, #a855f7, #ec4899);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* About Section */
.about-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f9fc;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f2937;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
  font-weight: 400;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}


.about-section {
  text-align: center;
  padding: 100px 20px;
  background-color: #f8f9fc;
  position: relative;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.bg-shape.top-left {
  top: -40px;
  left: -40px;
  width: 200px;
}

.bg-shape.bottom-right {
  bottom: -30px;
  right: -30px;
  width: 180px;
}



/* Animation Keyframes */
@keyframes fadeInHero {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-whyus-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.custom-whyus-table th {
  background-color: #007bff;
  color: #fff;
  padding: 18px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

.custom-whyus-table td {
  padding: 16px;
  vertical-align: top;
  font-size: 0.95rem;
  color: #333;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.custom-whyus-table tr:nth-child(even) td {
  background-color: #ffffff;
}

.custom-whyus-table tr:hover td {
  background-color: #eaf4ff;
  transition: 0.3s;
}

.why-us-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.table i {
  font-size: 1rem;
}

.solutions-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.solutions-section h2 {
  font-size: 2rem;
  color: #111827;
}

.rcm-btn {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin-right: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.rcm-btn.disabled {
  background-color: #eeeeee;
  color: #888888;
  cursor: not-allowed;
}

.rcm-btn:hover:not(.disabled) {
  background-color: #0657a8;
}

.image-box {
  background-color: #003366;
  padding: 15px;
  border-radius: 12px;
}

.image-box img {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 15px;
}

.image-caption h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.image-caption p {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.image-caption {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
}

[data-aos].aos-animate .image-caption {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  background: linear-gradient(to right, rgba(0, 20, 40, 0.92), rgba(0, 20, 40, 0.8)),
              url('https://imgs.search.brave.com/kANRoMmjLREOFDJwoKzIyvjH47utOFklayEYPWV-SMU/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly90NC5m/dGNkbi5uZXQvanBn/LzAzLzY5LzY5LzI5/LzM2MF9GXzM2OTY5/MjkxOF91bUxsMVBy/Y2k5cWZ1UzNQRnpT/Z2NYVDZGUmZxOGM0/cy5qcGc') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  position: relative;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(to right, #a855f7, #ec4899);
  color: #000;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn i {
  margin-left: 8px;
}

.cta-btn:hover {
  background-color: #ffaa00;
  transform: translateY(-2px);
}


.contact-form-section {
  background-color: #e6f0ff;
  padding: 80px 20px;
}

.support-box {
  background: #0b3d91;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.sales-form {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.sales-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.sales-form input,
.sales-form select {
  border-radius: 6px;
  padding: 10px;
}

.sales-form input[type="radio"],
.sales-form input[type="checkbox"] {
  margin-right: 6px;
}

.sales-form .cta-btn {
  background: linear-gradient(to right, #a855f7, #ec4899);
  color: #000;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  border: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.sales-form .cta-btn:hover {
  background: linear-gradient(to right, #a855f7, #ec4899);
}


.testimonials-section {
  background-color: #eaf0f9;
  padding: 80px 20px;
}

.testimonial-card {
  background: linear-gradient(135deg, #003366, #004080);
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  min-height: 300px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card .stars {
  color: gold;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.specialties-section {
  background-color: #072645;
  color: #fff;
}

.specialty-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specialty-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #000;
  padding: 10px 16px;
  border-left: 4px solid #007bff;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.specialty-item img {
  height:70px;
  width: 70px;
  object-fit: contain;
  margin-right: 12px;
}

.specialty-item span {
  flex-grow: 1;
  font-weight: 600;
}

.specialty-item:hover {
  background-color: #eaf2ff;
  cursor: pointer;
}

.specialty-item i {
  color: #007bff;
}

.specialties-section {
  background-color: #072645;
  color: #fff;
}

.specialty-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specialty-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #000;
  padding: 12px 20px;
  border-left: 5px solid #007bff;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.specialty-item img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  margin-right: 16px;
  border-radius: 50%;
}

.specialty-item span {
  flex-grow: 1;
  font-weight: 600;
  font-size: 1rem;
}

.specialty-item i {
  color: #007bff;
}

.specialty-item:hover {
  background: linear-gradient(to right, #a855f7, #ec4899);
  transform: translateY(-3px);
  cursor: pointer;
}
.connect-options-section {
  background-color: #f8fbff;
  padding: 80px 20px;
}

.accordion-button {
  background-color: #eef5ff;
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 15px 20px;
}

.accordion-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.footer-section {
  background-color: #072645;
  color: #fff;
  font-size: 0.95rem;
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  color: #fbb03b;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-section input[type="email"] {
  border-radius: 4px;
  border: none;
  padding: 10px;
}

.footer-section .btn-primary {
  background: linear-gradient(to right, #a855f7, #ec4899);
  border: none;
  font-weight: 600;
}

.footer-section .btn-primary:hover {
  background-color: #2f5dde;
}
